github.com/refraction-networking/utls.echClientContext.innerTranscript (field)

13 uses

	github.com/refraction-networking/utls (current package)
		handshake_client.go#L263: 	innerTranscript hash.Hash
		handshake_client_tls13.go#L78: 		hs.echContext.innerTranscript = hs.suite.hash.New()
		handshake_client_tls13.go#L85: 			if err := transcriptMsg(hs.echContext.innerHello, hs.echContext.innerTranscript); err != nil {
		handshake_client_tls13.go#L102: 		confTranscript := cloneHash(hs.echContext.innerTranscript, hs.suite.hash)
		handshake_client_tls13.go#L115: 			hs.transcript = hs.echContext.innerTranscript
		handshake_client_tls13.go#L269: 		chHash = hs.echContext.innerTranscript.Sum(nil)
		handshake_client_tls13.go#L270: 		hs.echContext.innerTranscript.Reset()
		handshake_client_tls13.go#L271: 		hs.echContext.innerTranscript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
		handshake_client_tls13.go#L272: 		hs.echContext.innerTranscript.Write(chHash)
		handshake_client_tls13.go#L280: 			confTranscript := cloneHash(hs.echContext.innerTranscript, hs.suite.hash)
		handshake_client_tls13.go#L299: 		if err := transcriptMsg(hs.serverHello, hs.echContext.innerTranscript); err != nil {
		handshake_client_tls13.go#L469: 			if err := transcriptMsg(hs.echContext.innerHello, hs.echContext.innerTranscript); err != nil {
		u_handshake_client.go#L590: 	if err := transcriptMsg(decodedInner, echCtx.innerTranscript); err != nil {